home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / Chaos v1_01837941420.psc / frmStart.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-04-15  |  3.1 KB  |  116 lines

  1. VERSION 5.00
  2. Begin VB.Form frmStart 
  3.    BorderStyle     =   4  'Festes Werkzeugfenster
  4.    Caption         =   "Chaos"
  5.    ClientHeight    =   1185
  6.    ClientLeft      =   45
  7.    ClientTop       =   285
  8.    ClientWidth     =   4050
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1185
  13.    ScaleWidth      =   4050
  14.    StartUpPosition =   2  'Bildschirmmitte
  15.    Begin VB.CommandButton Command9 
  16.       Caption         =   "Feigenbaum"
  17.       Height          =   255
  18.       Left            =   2760
  19.       TabIndex        =   8
  20.       Top             =   840
  21.       Width           =   1215
  22.    End
  23.    Begin VB.CommandButton Command8 
  24.       Caption         =   "Iteration 2"
  25.       Height          =   255
  26.       Left            =   1440
  27.       TabIndex        =   7
  28.       Top             =   840
  29.       Width           =   1215
  30.    End
  31.    Begin VB.CommandButton Command7 
  32.       Caption         =   "Iteration 1"
  33.       Height          =   255
  34.       Left            =   120
  35.       TabIndex        =   6
  36.       Top             =   840
  37.       Width           =   1215
  38.    End
  39.    Begin VB.CommandButton Command6 
  40.       Caption         =   "1.61803..."
  41.       Height          =   255
  42.       Left            =   1440
  43.       TabIndex        =   5
  44.       Top             =   480
  45.       Width           =   1215
  46.    End
  47.    Begin VB.CommandButton Command5 
  48.       Caption         =   "Mandelbrot 2"
  49.       Height          =   255
  50.       Left            =   2760
  51.       TabIndex        =   4
  52.       Top             =   480
  53.       Width           =   1215
  54.    End
  55.    Begin VB.CommandButton Command4 
  56.       Caption         =   "Mandelbrot 1"
  57.       Height          =   255
  58.       Left            =   2760
  59.       TabIndex        =   3
  60.       Top             =   120
  61.       Width           =   1215
  62.    End
  63.    Begin VB.CommandButton Command3 
  64.       Caption         =   "MVKM Iteration"
  65.       Height          =   255
  66.       Left            =   1440
  67.       TabIndex        =   2
  68.       Top             =   120
  69.       Width           =   1215
  70.    End
  71.    Begin VB.CommandButton Command2 
  72.       Caption         =   "Farn"
  73.       Height          =   255
  74.       Left            =   120
  75.       TabIndex        =   1
  76.       Top             =   480
  77.       Width           =   1215
  78.    End
  79.    Begin VB.CommandButton Command1 
  80.       Caption         =   "Tree"
  81.       Height          =   255
  82.       Left            =   120
  83.       TabIndex        =   0
  84.       Top             =   120
  85.       Width           =   1215
  86.    End
  87. Attribute VB_Name = "frmStart"
  88. Attribute VB_GlobalNameSpace = False
  89. Attribute VB_Creatable = False
  90. Attribute VB_PredeclaredId = True
  91. Attribute VB_Exposed = False
  92. Private Sub Command1_Click()
  93. frmMain.Show
  94. End Sub
  95. Private Sub Command2_Click()
  96. frmFarn.Show
  97. End Sub
  98. Private Sub Command3_Click()
  99. frmmvsetup.Show
  100. End Sub
  101. Private Sub Command4_Click()
  102. frmMBrotsetup.Show
  103. End Sub
  104. Private Sub Command5_Click()
  105. frmmbrot2setup.Show
  106. End Sub
  107. Private Sub Command6_Click()
  108. fib.Show
  109. End Sub
  110. Private Sub Command7_Click()
  111. frmIterG.Show
  112. End Sub
  113. Private Sub Command8_Click()
  114. frmTme.Show
  115. End Sub
  116.